home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / wpmdx.zip / WPMDX.DOC < prev    next >
Text File  |  1992-08-26  |  4KB  |  119 lines

  1.   Copyright (c) 1992 by Stan Mulder
  2.   WPMDX.EXE 1.3 8/26/92
  3.   Macro Description Extractor for DOS WordPerfect products 
  4.  
  5.  
  6.  
  7. PURPOSE
  8.  
  9. WPMDX extracts macro descriptions from various DOS WordPerfect products. 
  10. The program displays a list of sorted macro filenames followed by their
  11. descriptions.  Output is sent to the screen, but can also be redirected to a
  12. file or printer.  The following macro formats have been tested: WordPerfect
  13. 5.0 and 5.1 for DOS, Office 3.0 and 3.1 (Editor and Shell macros),
  14. DrawPerfect 1.1, PlanPerfect 5.1, and LetterPerfect macros.  Other WP DOS
  15. products may be compatible as well. Example output:
  16.  
  17.  
  18. FILENAME        MACRO DESCRIPTION
  19. ------------    ---------------------------------------
  20. ALTQ     EDM    Quit Editor
  21. ALTR     EDM    Remove the Current File/Macro Marks
  22. SCANVARS EDM    Create a list of variables a macro uses
  23. CL_PD    SHM    Print the Current Calendar Day
  24. CL_PD1   SHM    Print the Current Calendar Day
  25. CL_PRINT SHM    Print Calendar
  26. CL_PRNT1 SHM    Print Calendar
  27. DIAL     SHM    Dial a Number using NB
  28. DIAL1    SHM    Dial a Number
  29. EDPL50   SHM    Program Launch startup macro for PL.EXE
  30. ALTD     WPM    Go to list files with options; no save
  31. ALTE     WPM    Edit a Code
  32. ALTP     WPM    Save document by overwriting/no exit
  33. ALTQ     WPM    Quit WordPerfect w/o saving anything
  34. ALTR     WPM    Replace Size, Attribute, or Text.
  35. ALTU     WPM    Uppercase the current cursor position
  36. ALTX     WPM    Various routines
  37. ALTZ     WPM
  38. BCMRG    WPM    Parse variable "ZIP" for POSTNET barcod
  39. CADD     WPM    set up cadd sheet
  40. CALC     WPM    Pop-Up Calculator
  41. CCM      WPM    Creates columned list of character maps
  42. CEO21    WPM    Count every occurence of every word
  43. COUNT    WPM    Macro to count strings
  44. DATEDOC  WPM    Names document with the current date
  45.  
  46. ... etc.
  47.  
  48. Notice in the above that the files are sorted first by extension, then 
  49. by filename.
  50.  
  51.  
  52. USAGE
  53.  
  54. The program is run from the DOS command line.  The basic syntax is the 
  55. following:
  56.  
  57. WPMDX.EXE [drive:\][path\]filename.ext [/h] [/s]
  58.   /h makes the output printable on an HP laserjet compatible
  59.   /s suppress the header
  60.   
  61. You can use wildcards in the filename.ext such as "*" and "?".
  62.  
  63. Examples:
  64.    
  65.   Display to the screen:       WPMDX c:\wp51\macros\*.wpm
  66.   One screen at a time:        WPMDX c:\wp51\macros\*.wpm | MORE
  67.   Display only one macro:      WPMDX c:\wp51\macros\envelope.wpm
  68.   Macros that start with M:    WPMDX c:\wp51\macros\m*.wpm
  69.   Output to a file:            WPMDX c:\wp51\macros\*.wpm > filename
  70.   Append output to a file:     WPMDX c:\wp51\macros\other\*.wpm >> filename
  71.   Output to an HP printer:     WPMDX c:\wp51\macros\*.wpm /h > lpt2
  72.   Output to an Epson printer:  WPMDX c:\wp51\macros\*.wpm > lpt1
  73.   Display Editor macros:       WPMDX c:\office30\*.edm
  74.   Display Shell macros:        WPMDX c:\office30\*.shm
  75.   Display all files with a macro format:  WPMDX c:\office30\*.*
  76.   
  77.   Executing WPMDX by itself will produce a help screen.
  78.  
  79.   The characters ">", ">>", "|" and the MORE command are DOS redirection
  80.   symbols and pipes.  For more information on using redirection, consult 
  81.   your DOS manual.
  82.  
  83.  
  84. NOTES
  85.  
  86. This program may not be resold in any way whatsoever, but may be distributed
  87. as shareware as long as no modifications are made to the files.  No warranty
  88. is made as to the fitness or useability of this program.  
  89.  
  90. Macro Description Extractor was written in QuickBasic 4.5
  91.  
  92. Send any comments or enhancement requests to the below CompuServe ID or PO
  93. Box address.  I hope you enjoy WPMDX.EXE
  94.  
  95.   Stan Mulder
  96.   PO Box 2375
  97.   Winter Haven, FL  33883-2375
  98.   USA
  99.   
  100.   CompuServe: 73447,561
  101.  
  102.  
  103. REVISION
  104.  
  105. 1.3  08/26/92 Now sorts by extension first, then filename -- so if you have
  106.      various WP Corp. macros in the same directory such as EDM, SHM and WPM
  107.      macros and type "WPMDX *.*" the EDM's will appear first, then the SHM's,
  108.      then the WPM's.
  109. 1.2  08/18/92 Added HP printer switch.  Added switch to suppress printing the
  110.      2 line header.  Added support for other WP DOS macros.  Fixed a bug in
  111.      extracting the description.
  112. 1.12 07/24/92 Minor bug fix: stopped extraction of description when first byte
  113.      was nulled.
  114. 1.11 07/24/92 First released version.
  115. 1.1  07/20/92
  116. 1.0  07/07/92
  117.  
  118. end
  119.